home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / SAVESYS.HLP < prev    next >
Text File  |  1988-01-11  |  952b  |  28 lines

  1. \ SAVESYS.HLP   SAVE-SYSTEM and TURNKEY                 by Tom Zimmer
  2.  
  3.  
  4. SAVE            ( Addr len name --- )
  5.         Save the memory of the current code segment starting at "addr"
  6.         for length "len", to "name".
  7.  
  8. SAVE-SYSTEM     ( | name -- )
  9.         Save all of Forth to "name" the file.
  10.  
  11. TBOOT           ( --- )
  12.         Trunkey boot, a defered word that is set to perform the
  13.         function of a turnkeyed application.
  14.  
  15. TSETSEGS        ( --- )
  16.         Perform the initialization required for Forth to operate.
  17.         Allocates space for the code and list segments.
  18.  
  19. TSTART          ( --- )
  20.         The start word for TURNKEY. initailized the interpreter, and
  21.         performs default to open a file specified on the command
  22.         line, then executes your application.
  23.  
  24. TURNKEY         ( A1 | name.COM --- )
  25.         Save a1 into TBOOT, and save the resulting Forth memory
  26.         image to the file "name.COM".
  27.  
  28.